Skip to content

Import upstream CloudWatch tool integration - #21

Open
fineas-bot[bot] wants to merge 1 commit into
mainfrom
centaur/codex/import-upstream-cloudwatch-tool-1781239954
Open

Import upstream CloudWatch tool integration#21
fineas-bot[bot] wants to merge 1 commit into
mainfrom
centaur/codex/import-upstream-cloudwatch-tool-1781239954

Conversation

@fineas-bot

@fineas-bot fineas-bot Bot commented Jun 12, 2026

Copy link
Copy Markdown

Summary

  • Ports upstream paradigmxyz/centaur@253a38060d2c09cc7721cee24401060a08a67aa4 into the TipLink fork.
  • Adds the read-only CloudWatch tool plus aws_auth secret parsing/rendering for iron-proxy.
  • Wires non-secret AWS_REGION into the tool-server sidecar and includes the upstream iron-proxy header/base-image updates.
  • Adapts the upstream sandbox test to the fork's newer _build_tool_server_container signature.

Verification

  • uv run --project services/api pytest services/api/tests/test_proxy_config.py services/api/tests/test_sandbox_kubernetes_backend.py -q
  • uv run --with boto3 --with pytest pytest tools/infra/cloudwatch/test_client.py -q
  • uv run --project services/api ruff check services/api/api/proxy_config.py services/api/api/sandbox/kubernetes.py services/api/api/tool_manager.py services/api/tests/test_proxy_config.py services/api/tests/test_sandbox_kubernetes_backend.py tools/infra/cloudwatch/client.py tools/infra/cloudwatch/test_client.py
  • git diff --check

…aradigmxyz#287)

* feat(tools): add read-only CloudWatch tool via iron-proxy aws_auth

Add a `cloudwatch` infra tool mirroring the AWS CloudWatch MCP's read-only
surface: log groups, filter log events, Logs Insights queries, metrics, and
alarms (boto3-backed, JSON-safe responses, lazy client so discovery needs no
credentials or network).

AWS auth rides iron-proxy's `aws_auth` transform rather than holding real
credentials in the tool process. SigV4 can't be swapped on the wire like a
bearer token, but iron-proxy re-signs: boto3 signs each request with throwaway
placeholder credentials, and iron-proxy reads the region/service from the
signature scope and re-signs with the real read-only IAM keys it resolves from
the secrets backend. The keys never enter the workload — the SigV4 analogue of
the `secrets` placeholder swap. (aws_auth landed in iron-proxy v0.40.0; Centaur
pins 0.42.0-rc.2, which includes it.)

- tool_manager: AwsAuthSecret type + parser (access_key_id/secret_access_key/
  session_token refs, allowed_regions/services, hosts)
- proxy_config: render the aws_auth transform; add to _MANAGED_TRANSFORMS
- iron-proxy base configs: allowlist x-amz-* so x-amz-target (the CloudWatch
  operation header) survives egress filtering
- cloudwatch tool: declare the aws_auth secret; sign with placeholders; region
  is the only real value (non-secret, read from env, defaults us-east-1)
- kubernetes: expose only AWS_REGION (non-secret, optional) to the tool-server
  sidecar — no AWS credentials in-process
- tests: cloudwatch client, aws_auth parser + renderer, sidecar (creds absent)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>

* fix(cloudwatch): allow AWS SDK signed headers through the egress filter

aws_auth re-signs CloudWatch requests with the AWS SDK v4 signer, whose
signed-headers set includes the SDK's amz-sdk-request, amz-sdk-invocation-id,
and (for CloudWatch's query-JSON protocol) x-amzn-query-mode headers.
header_allowlist runs after aws_auth and was stripping them, so AWS rebuilt
the canonical request without them and rejected every call with
InvalidSignatureException.

Allow /^amz-sdk-.*$/ and /^x-amzn-.*$/ so the signed headers reach AWS. Pairs
with the /^x-amz-.*$/ allowance already added for the SigV4 headers.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

* chore(iron-proxy): bump base image to 0.42.0-rc.4 for the awsauth CONNECT fix

0.42.0-rc.4 is the first release containing paradigmxyz/iron-proxy#167, which lets
the synthetic CONNECT through the tunnel transform-policy check so aws_auth
signs the post-MITM inner request instead of rejecting the CONNECT. Required
for the CloudWatch tool's aws_auth path.

---------

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant